home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d14 / archives.arc / ARC-E.DOC < prev    next >
Text File  |  1991-06-23  |  12KB  |  350 lines

  1.  
  2.  
  3.   ARC-E Command                                         Version 4.0e
  4.   -------------                                         Mar 17, 1989
  5.  
  6.  
  7.   Purpose:  Use ARC-E to extract files from an ARC archive file.
  8.  
  9.   Format:   The program name may be either ARC-E or ARCE.
  10.  
  11.         ARC-E  [d:][path]filename.ext  [filespecs...] [d:outpath]
  12.                                       [/R]
  13.                                       [/Q]
  14.                                       [/P]
  15.                                       [/T]
  16. |                                     [/5]
  17.                                       [/Gpassword]
  18.  
  19.   Remarks:
  20.  
  21.         The drive and path names are optional.  If omitted, the  current
  22.         drive and path name is used.
  23.  
  24.         The filename must be  supplied.  The extension defaults  to ARC.
  25.         All files matching the supplied filename are processed.  The ARC
  26.         filename may contain the * and ? wildcard characters.
  27.  
  28.         If  no  filespecs  are   supplied,  all  files  are   extracted.
  29.         Otherwise, only those ARC members  which match one of the  up to
  30.         16 filespecs are extracted.
  31.  
  32.         The extracted files  may be placed  on another drive,  and/or in
  33.         another subdirectory by following the optional filespecs with  a
  34.         drive designator and/or path name.
  35.  
  36.         If  the  file  being  extracted  already  exists,  you are asked
  37.         whether or not you want to over-write it.  You may use the |  /R
  38.         option to bypass this prompt.  Use a Y followed by the |  return
  39.         key to over-write the file.
  40.  
  41.         Use the /Q option to suppress alarm sounds, beeps, and bells.
  42.  
  43.         Use  the  /P  option  to  write  the  extracted files to the DOS
  44.         standard output  file.  With  /P, you  may pipe  or redirect the
  45.         output.  An initial line feed  is added to the beginning  of the
  46.         output file.
  47.  
  48.         Use the /T option to test the archive's integrity. No files will
  49.         be extracted.
  50.  
  51.         If the file was encrypted, use the /G option to supply the  same
  52.         password as was used to create the file, e.g. /GSECRET.
  53.  
  54. |       Use the /5 option to stop ARC-E from creating the subdirectories
  55. |       for files created with the ARC /Z subdirectory option.
  56.  
  57.  
  58.         ARC-E 4.0e, Copyright (c) 1986-89, Wayne Chin and Vernon D. Buerg.
  59.         ALL RIGHTS RESERVED.
  60.  
  61.  
  62.   ARC-E Command                                         Version 4.0e
  63.   -------------                                         Mar 17, 1989
  64.  
  65.  
  66.  
  67.                         Examples
  68.                         --------
  69.  
  70.         o  Extract all file from TEST.ARC onto the current drive:
  71.  
  72.               ARC-E TEST
  73.  
  74.         o  Extract only file with  an extension of .ASM from the archive
  75.            SOURCE.ARC on drive B and in subdirectory SAVE:
  76.  
  77.               ARC-E B:\SAVE\SOURCE *.ASM
  78.  
  79.         o  Extract  all  files  from  all  ARC files in the subdirectory
  80.            called TEST on drive C:
  81.  
  82.               ARC-E C:\TEST\*
  83.  
  84.         o  Extract  all  files  from  PROGA.ARC  and  place the files in
  85.            subdirectory OLD on drive B:
  86.  
  87.               ARC-E PROGA.ARC B:\OLD
  88.  
  89.         o  Extract all files with an extension of .COM and .EXE from the
  90.            archive PROGS.ARC in directory NEW\WORK on drive B, and place
  91.            the  them  in  subdirectory  SAVE\TEST  on  drive  A; replace
  92.            existing file:
  93.  
  94.               ARC-E B:\NEW\WORK\PROGS *.COM *.EXE A:\SAVE\TEST /R
  95.  
  96.         o  Extract  the  file  READ.ME  from  the  archive GIZMO.ARC and
  97.            display it on the console instead of writing it to a file:
  98.  
  99.               ARC-E GIZMO READ.ME /P
  100.  
  101.         o  Same as above, except  pass the extracted READ.ME file to the
  102.            LIST file viewer:
  103.  
  104.               ARC-E GIZMO READ.ME /P | LIST /S
  105.  
  106.  
  107.  
  108.   ARC-E Command                                         Version 4.0e
  109.   -------------                                         Mar 17, 1989
  110.  
  111.                         Error Messages
  112.                         --------------
  113.  
  114.       'filename - premature EOF reading '
  115.  
  116.         Data  is  missing  from  the  archive  file.   The  program   is
  117.         terminated.
  118.  
  119.  
  120.       'filename - unable to set file datestamp'
  121.  
  122.         The file datestamp is set to the current date and time, and  the
  123.         next archive member is processed.
  124.  
  125.  
  126.       'filename - WARNING: file CRC does not match!'
  127.  
  128.         The extracted member  is left on  the output disk,  and the next
  129.         archive member is processed.   The file is probably  invalid but
  130.         is left on the disk for your examination.
  131.  
  132.  
  133.       'Invalid filespec(s)'
  134.  
  135.         The filespec syntax is incorrect.  The filename part may be from
  136.         1  to  eight  characters,  and  may  include the ? or * wildcard
  137.         characters.  The extension may be none to three characters,  and
  138.         may  include  wildcards.   There  is  a  maximum of 16 filespecs
  139.         allowed.  The program terminates.
  140.  
  141.  
  142.       'filename - file already exists. Overwrite it? (y/N) '
  143.  
  144.         The member being extracted already  exists.  If you are using  a
  145.         data  path  utility,  the  file  may  not  actually  be  in  the
  146.         subdirectory be used for output.   Respond with the letter Y  to
  147.         over-write the existing  file, or respond  with the letter  N to
  148.         skip this member and continue to the next.
  149.  
  150.  
  151.       'Abort: Stack overflow'
  152.  
  153.         The member  being extracted  has invalid  data.  The  program is
  154.         terminated.
  155.  
  156.  
  157.       'filename - invalid decode tree count'
  158.  
  159.         The member  being extracted  has invalid  data.  The  program is
  160.         terminated.
  161.  
  162.  
  163.  
  164.   ARC-E Command                                         Version 4.0e
  165.   -------------                                         Mar 17, 1989
  166.  
  167.                         Error Messages (cont'd)
  168.                         --------------
  169.  
  170.  
  171.       'filename - new archive format 7 not yet supported'
  172.  
  173.         Format 7 is a special file compression method used internally by
  174.         SEA,  the  authors  of  ARC.  Processing continues with the next
  175.         archive member.
  176.  
  177.  
  178.       'Unable to open archive > arcname'
  179.  
  180.         The  specified  ARC   archive  file  was   not  found,  or   was
  181.         inaccessible.  The program terminates.
  182.  
  183.  
  184.       'CREATE failed > filename'
  185.  
  186.         There was insufficient directory  space, or a failure  accessing
  187.         the output disk.  The program terminates.
  188.  
  189.  
  190.         'Invalid archive format!'
  191.  
  192.         The archive file data is invalid.  The program terminates.
  193.  
  194.  
  195.       'Incorrect DOS version'
  196.  
  197.         Version  2.0  or  later  of  PC  DOS  must be used.  The program
  198.         terminates
  199.  
  200.  
  201.       'Not enough memory.'
  202.  
  203.         A minimum  of 112k  bytes of  memory is  required.  The  program
  204.         terminates.
  205.  
  206.  
  207.       'I/O error reading from arcname'
  208.  
  209.         An incorrectable error occurred attempting to read data from the
  210.         archive file.  The program terminates.
  211.  
  212.  
  213.       'I/O error writing or disk full > filename'
  214.  
  215.         There was not  enough disk space  to write the  complete archive
  216.         member.   The  partially  extracted  file  is  scratched and the
  217.         program terminates.
  218.  
  219.  
  220.  
  221.   ARC-E Command                                         Version 4.0e
  222.   -------------                                         Mar 17, 1989
  223.  
  224.                         Error Messages (cont'd)
  225.                         --------------
  226.  
  227.  
  228.       'No matching file(s) found'
  229.  
  230.         No archive files were  found that matched the  supplied filename
  231.         specifications.  The program terminates.
  232.  
  233.  
  234.  
  235.       'filename - ERROR: invalid file codes'
  236.  
  237.         An error was detected while attempting to decode a crunched
  238.         file. Either some data bytes are invalid, there are extra
  239.         bytes, or there are bytes missing. The archive is invalid.
  240.  
  241.  
  242.  
  243.   ARC-E Command                                         Version 4.0e
  244.   -------------                                         Mar 17, 1989
  245.  
  246.                         Version history
  247.                         ---------------
  248.  
  249.         1.1 - 1/13/86   -initial release
  250.  
  251.         2.00, 04/08/86  - fine tuning of I/O buffering
  252.  
  253.         2.01-2.05, 4-20 thru 9/9/86
  254.                         - improve unsq, correct disk full message
  255.         2.06, 9/17/86   - release from testing
  256.         2.07, from 9/19 - not released
  257.         2.08, 12/31/86 - added /P, /Q; fixed /R with redirection
  258.         2.09, 1/5/87   - correct closing of output if /P used; require return
  259.                          (enter key) for over-write prompt
  260.                        - add more validity checking of member headers
  261.         2.10, 1/6/87   - correct use out output file specification
  262.         2.11, 1/24/87  - some cosmetics, wrong banner version and date
  263.  
  264.         3.0a, 3/16/87  - added /G for password encryption
  265.                        - added /T for integrity checking only
  266.                        - correct loop in command line parsing
  267.                        - internal optimization
  268.                        - make intergity checking more robust
  269.  
  270.         3.0c, 3/23/87  - improve extracting with file selection
  271.                        - minor fixes and cosmetic changes
  272.  
  273.         3.0d, 3/29/87  - correction to unsqueeze
  274.  
  275.         3.0e, 4/02/87  - correct loop with invalid archives
  276.                        - insure errorlevel non-zero if any errors
  277.                        - correct loop in command line processing
  278.  
  279.         3.0f, 5/31/87  - correct false 'disk full' error message when
  280.                          using /p (piping) option
  281.                        - correct failure to extract all files from a
  282.                          garbled (/g) archive
  283.  
  284.         3.1a, 9/10/87  - cosmetic changes
  285.  
  286.         3.1b, 9/16/87  - unsquashing version released
  287.  
  288.         3.1c, 2/06/88  - lessen memory requirement to 50k
  289.  
  290. |       4.0a, 2/06/89  - add subdirectory support via /Z option
  291.  
  292. |       4.0b, 2/28/89  - change meaning of /Z to /5;
  293. |                        correct name used for /Z output directories
  294.  
  295. |       4.0c, 3/03/89  - correct mkdir error without /5
  296.  
  297. |       4.0e, 3/17/89  - cosmetic changes
  298.  
  299.  
  300.   ARC-E Command                                         Version 4.0e
  301.   -------------                                         Mar 17, 1989
  302.  
  303.  
  304.  
  305.                         Notices
  306.                         -------
  307.  
  308.         ARC-E (c) Copyright 1986-1989 by Wayne Chin and Vernon D. Buerg
  309.         ALL RIGHTS RESERVED.
  310.  
  311.         ARC-E is free, but it is a copyrighted work and may be distributed
  312.         only pursuant to this license.
  313.  
  314.         Permission is hereby granted to reproduce and disseminate ARC-E so
  315.         long as:
  316.  
  317.            (1)  No remuneration of any kind is received in exchange; and
  318.  
  319.            (2)  Distribution is without ANY modification to the contents of
  320.                 ARC-E.COM and all accompanying documentation and/or support
  321.                 files, including the copyright notice and this license.
  322.  
  323.         No copy of ARC-E may be distributed without including a copy of this
  324.         license.
  325.  
  326.         Any other use is prohibited without express, written permission in
  327.         advance.
  328.  
  329.  
  330.  
  331.                 Vernon D. Buerg
  332.                 139 White Oak Circle
  333.                 Petaluma, CA  94952
  334.  
  335.                 CompuServe: 70007,1212
  336.                 Data/BBS:   707-778-8944, VOR 24-hour BBS, 300-2400 bps
  337.                             415-994-2944, VOR South, 300-2400
  338.                             707-778-8841, Motherboard, 300-2400, Hayes VSM 9600
  339.                             707-778-8743, Motherboard, 300-2400, USR HST 9600
  340.  
  341.  
  342.  
  343.         For use by corporations, institutions, or for profit, contact
  344.         System Enhancement Associates for licensing information.
  345.  
  346.                    System Enhancement Associates
  347.                    21 New Street
  348.                    Wayne, NJ 07470
  349.  
  350.